home *** CD-ROM | disk | FTP | other *** search
- /* A simple telephone phone book to */
- /* demonstrate compound variables */
-
- if arg() ~= 1 then do
- say "USAGE: phonebook name"
- exit 5
- end
-
- number. = '(not found)'
- number.bill = '(617) 568-8695'
- number.amiga = '(215) 431-9100'
- /* (your numbers here) */
-
- arg name /* the name */
- say name||"'s number is" number.name
-